home *** CD-ROM | disk | FTP | other *** search
/ Delphi 2.0 - Programmer's Utilities Power Pack / Delphi 2.0 Programmer's Utilities Power Pack.iso / m_to_r / mailx4 / ocxstep1.fr_ / ocxstep1.bin (.txt)
Encoding:
Visual Basic Form  |  1996-09-15  |  2.7 KB  |  92 lines

  1. VERSION 4.00
  2. Begin VB.Form FormStep1 
  3.    Caption         =   "Mail eXtension Step #1"
  4.    ClientHeight    =   5295
  5.    ClientLeft      =   1425
  6.    ClientTop       =   1845
  7.    ClientWidth     =   6285
  8.    Height          =   5670
  9.    Left            =   1380
  10.    LinkTopic       =   "Form1"
  11.    ScaleHeight     =   5295
  12.    ScaleWidth      =   6285
  13.    Top             =   1515
  14.    Width           =   6375
  15.    Begin VB.PictureBox Picture1 
  16.       Align           =   2  'Align Bottom
  17.       Height          =   495
  18.       Left            =   0
  19.       ScaleHeight     =   465
  20.       ScaleWidth      =   6255
  21.       TabIndex        =   0
  22.       Top             =   4800
  23.       Width           =   6285
  24.       Begin VB.Label szStatus 
  25.          Caption         =   "No Active Session"
  26.          Height          =   255
  27.          Left            =   120
  28.          TabIndex        =   3
  29.          Top             =   120
  30.          Width           =   4695
  31.       End
  32.    End
  33.    Begin Threed.SSPanel SSPanel1 
  34.       Align           =   1  'Align Top
  35.       Height          =   1095
  36.       Left            =   0
  37.       TabIndex        =   1
  38.       Top             =   0
  39.       Width           =   6285
  40.       _version        =   65536
  41.       _extentx        =   11086
  42.       _extenty        =   1931
  43.       _stockprops     =   15
  44.       backcolor       =   12632256
  45.       bevelinner      =   1
  46.       Begin Threed.SSCommand SSCommand1 
  47.          Height          =   855
  48.          Left            =   120
  49.          TabIndex        =   2
  50.          Top             =   120
  51.          Width           =   1215
  52.          _version        =   65536
  53.          _extentx        =   2143
  54.          _extenty        =   1508
  55.          _stockprops     =   78
  56.          caption         =   "Login cc:Mail"
  57.          picture         =   "OCXSTEP1.frx":0000
  58.       End
  59.    End
  60.    Begin Mailx16Lib.MForm MForm1 
  61.       Left            =   240
  62.       Top             =   4440
  63.       _version        =   65541
  64.       _extentx        =   10398
  65.       _extenty        =   500
  66.       _stockprops     =   0
  67.       mxformname      =   "FormTag2"
  68.    End
  69.    Begin Mailx16Lib.MSess MSess1 
  70.       Left            =   240
  71.       Top             =   3720
  72.       _version        =   65541
  73.       _extentx        =   900
  74.       _extenty        =   900
  75.       _stockprops     =   0
  76.       mail_type       =   2
  77.       displayerrors   =   0   'False
  78.    End
  79. Attribute VB_Name = "FormStep1"
  80. Attribute VB_Creatable = False
  81. Attribute VB_Exposed = False
  82. Private Sub SSCommand1_Click()
  83.     MSess1.Logon = True
  84.     If MSess1.Logon = True Then
  85.         szStatus = "Active cc:Mail Session"
  86.     Else
  87.         szStatus = "No Active Session"
  88.     End If
  89. End Sub
  90. Private Sub SSPanel1_Click()
  91. End Sub
  92.